home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / dev / gcc / ppc-mos-gcc.lha / info / gcc.info-9 (.txt) < prev   
GNU Info File  |  2002-06-18  |  51KB  |  932 lines

  1. This is Info file gcc.info, produced by Makeinfo version 1.68 from the
  2. input file ./gcc.texi.
  3. INFO-DIR-SECTION Programming
  4. START-INFO-DIR-ENTRY
  5. * gcc: (gcc).                  The GNU Compiler Collection.
  6. END-INFO-DIR-ENTRY
  7.    This file documents the use and the internals of the GNU compiler.
  8.    Published by the Free Software Foundation 59 Temple Place - Suite 330
  9. Boston, MA 02111-1307 USA
  10.    Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
  11. 1999, 2000 Free Software Foundation, Inc.
  12.    Permission is granted to make and distribute verbatim copies of this
  13. manual provided the copyright notice and this permission notice are
  14. preserved on all copies.
  15.    Permission is granted to copy and distribute modified versions of
  16. this manual under the conditions for verbatim copying, provided also
  17. that the sections entitled "GNU General Public License" and "Funding
  18. for Free Software" are included exactly as in the original, and
  19. provided that the entire resulting derived work is distributed under
  20. the terms of a permission notice identical to this one.
  21.    Permission is granted to copy and distribute translations of this
  22. manual into another language, under the above conditions for modified
  23. versions, except that the sections entitled "GNU General Public
  24. License" and "Funding for Free Software", and this permission notice,
  25. may be included in translations approved by the Free Software Foundation
  26. instead of in the original English.
  27. File: gcc.info,  Node: Cross Runtime,  Next: Build Cross,  Prev: Cross Headers,  Up: Cross-Compiler
  28. `libgcc.a' and Cross-Compilers
  29. ------------------------------
  30.    Code compiled by GNU CC uses certain runtime support functions
  31. implicitly.  Some of these functions can be compiled successfully with
  32. GNU CC itself, but a few cannot be.  These problem functions are in the
  33. source file `libgcc1.c'; the library made from them is called
  34. `libgcc1.a'.
  35.    When you build a native compiler, these functions are compiled with
  36. some other compiler-the one that you use for bootstrapping GNU CC.
  37. Presumably it knows how to open code these operations, or else knows how
  38. to call the run-time emulation facilities that the machine comes with.
  39. But this approach doesn't work for building a cross-compiler.  The
  40. compiler that you use for building knows about the host system, not the
  41. target system.
  42.    So, when you build a cross-compiler you have to supply a suitable
  43. library `libgcc1.a' that does the job it is expected to do.
  44.    To compile `libgcc1.c' with the cross-compiler itself does not work.
  45. The functions in this file are supposed to implement arithmetic
  46. operations that GNU CC does not know how to open code for your target
  47. machine.  If these functions are compiled with GNU CC itself, they will
  48. compile into infinite recursion.
  49.    On any given target, most of these functions are not needed.  If GNU
  50. CC can open code an arithmetic operation, it will not call these
  51. functions to perform the operation.  It is possible that on your target
  52. machine, none of these functions is needed.  If so, you can supply an
  53. empty library as `libgcc1.a'.
  54.    Many targets need library support only for multiplication and
  55. division.  If you are linking with a library that contains functions for
  56. multiplication and division, you can tell GNU CC to call them directly
  57. by defining the macros `MULSI3_LIBCALL', and the like.  These macros
  58. need to be defined in the target description macro file.  For some
  59. targets, they are defined already.  This may be sufficient to avoid the
  60. need for libgcc1.a; if so, you can supply an empty library.
  61.    Some targets do not have floating point instructions; they need other
  62. functions in `libgcc1.a', which do floating arithmetic.  Recent
  63. versions of GNU CC have a file which emulates floating point.  With a
  64. certain amount of work, you should be able to construct a floating
  65. point emulator that can be used as `libgcc1.a'.  Perhaps future
  66. versions will contain code to do this automatically and conveniently.
  67. That depends on whether someone wants to implement it.
  68.    Some embedded targets come with all the necessary `libgcc1.a'
  69. routines written in C or assembler.  These targets build `libgcc1.a'
  70. automatically and you do not need to do anything special for them.
  71. Other embedded targets do not need any `libgcc1.a' routines since all
  72. the necessary operations are supported by the hardware.
  73.    If your target system has another C compiler, you can configure GNU
  74. CC as a native compiler on that machine, build just `libgcc1.a' with
  75. `make libgcc1.a' on that machine, and use the resulting file with the
  76. cross-compiler.  To do this, execute the following on the target
  77. machine:
  78.      cd TARGET-BUILD-DIR
  79.      ./configure --host=sparc --target=sun3
  80.      make libgcc1.a
  81. And then this on the host machine:
  82.      ftp TARGET-MACHINE
  83.      binary
  84.      cd TARGET-BUILD-DIR
  85.      get libgcc1.a
  86.      quit
  87.    Another way to provide the functions you need in `libgcc1.a' is to
  88. define the appropriate `perform_...' macros for those functions.  If
  89. these definitions do not use the C arithmetic operators that they are
  90. meant to implement, you should be able to compile them with the
  91. cross-compiler you are building.  (If these definitions already exist
  92. for your target file, then you are all set.)
  93.    To build `libgcc1.a' using the perform macros, use
  94. `LIBGCC1=libgcc1.a OLDCC=./xgcc' when building the compiler.
  95. Otherwise, you should place your replacement library under the name
  96. `libgcc1.a' in the directory in which you will build the
  97. cross-compiler, before you run `make'.
  98. File: gcc.info,  Node: Cross Headers,  Next: Cross Runtime,  Prev: Tools and Libraries,  Up: Cross-Compiler
  99. Cross-Compilers and Header Files
  100. --------------------------------
  101.    If you are cross-compiling a standalone program or a program for an
  102. embedded system, then you may not need any header files except the few
  103. that are part of GNU CC (and those of your program).  However, if you
  104. intend to link your program with a standard C library such as `libc.a',
  105. then you probably need to compile with the header files that go with
  106. the library you use.
  107.    The GNU C compiler does not come with these files, because (1) they
  108. are system-specific, and (2) they belong in a C library, not in a
  109. compiler.
  110.    If the GNU C library supports your target machine, then you can get
  111. the header files from there (assuming you actually use the GNU library
  112. when you link your program).
  113.    If your target machine comes with a C compiler, it probably comes
  114. with suitable header files also.  If you make these files accessible
  115. from the host machine, the cross-compiler can use them also.
  116.    Otherwise, you're on your own in finding header files to use when
  117. cross-compiling.
  118.    When you have found suitable header files, put them in the directory
  119. `/usr/local/TARGET/include', before building the cross compiler.  Then
  120. installation will run fixincludes properly and install the corrected
  121. versions of the header files where the compiler will use them.
  122.    Provide the header files before you build the cross-compiler, because
  123. the build stage actually runs the cross-compiler to produce parts of
  124. `libgcc.a'.  (These are the parts that *can* be compiled with GNU CC.)
  125. Some of them need suitable header files.
  126.    Here's an example showing how to copy the header files from a target
  127. machine.  On the target machine, do this:
  128.      (cd /usr/include; tar cf - .) > tarfile
  129.    Then, on the host machine, do this:
  130.      ftp TARGET-MACHINE
  131.      lcd /usr/local/TARGET/include
  132.      get tarfile
  133.      quit
  134.      tar xf tarfile
  135. File: gcc.info,  Node: Build Cross,  Prev: Cross Runtime,  Up: Cross-Compiler
  136. Actually Building the Cross-Compiler
  137. ------------------------------------
  138.    Now you can proceed just as for compiling a single-machine compiler
  139. through the step of building stage 1.  If you have not provided some
  140. sort of `libgcc1.a', then compilation will give up at the point where
  141. it needs that file, printing a suitable error message.  If you do
  142. provide `libgcc1.a', then building the compiler will automatically
  143. compile and link a test program called `libgcc1-test'; if you get
  144. errors in the linking, it means that not all of the necessary routines
  145. in `libgcc1.a' are available.
  146.    You must provide the header file `float.h'.  One way to do this is
  147. to compile `enquire' and run it on your target machine.  The job of
  148. `enquire' is to run on the target machine and figure out by experiment
  149. the nature of its floating point representation.  `enquire' records its
  150. findings in the header file `float.h'.  If you can't produce this file
  151. by running `enquire' on the target machine, then you will need to come
  152. up with a suitable `float.h' in some other way (or else, avoid using it
  153. in your programs).
  154.    Do not try to build stage 2 for a cross-compiler.  It doesn't work to
  155. rebuild GNU CC as a cross-compiler using the cross-compiler, because
  156. that would produce a program that runs on the target machine, not on the
  157. host.  For example, if you compile a 386-to-68030 cross-compiler with
  158. itself, the result will not be right either for the 386 (because it was
  159. compiled into 68030 code) or for the 68030 (because it was configured
  160. for a 386 as the host).  If you want to compile GNU CC into 68030 code,
  161. whether you compile it on a 68030 or with a cross-compiler on a 386, you
  162. must specify a 68030 as the host when you configure it.
  163.    To install the cross-compiler, use `make install', as usual.
  164. File: gcc.info,  Node: Sun Install,  Next: VMS Install,  Prev: Cross-Compiler,  Up: Installation
  165. Installing GNU CC on the Sun
  166. ============================
  167.    On Solaris, do not use the linker or other tools in `/usr/ucb' to
  168. build GNU CC.  Use `/usr/ccs/bin'.
  169.    If the assembler reports `Error: misaligned data' when bootstrapping,
  170. you are probably using an obsolete version of the GNU assembler.
  171. Upgrade to the latest version of GNU `binutils', or use the Solaris
  172. assembler.
  173.    Make sure the environment variable `FLOAT_OPTION' is not set when
  174. you compile `libgcc.a'.  If this option were set to `f68881' when
  175. `libgcc.a' is compiled, the resulting code would demand to be linked
  176. with a special startup file and would not link properly without special
  177. pains.
  178.    There is a bug in `alloca' in certain versions of the Sun library.
  179. To avoid this bug, install the binaries of GNU CC that were compiled by
  180. GNU CC.  They use `alloca' as a built-in function and never the one in
  181. the library.
  182.    Some versions of the Sun compiler crash when compiling GNU CC.  The
  183. problem is a segmentation fault in cpp.  This problem seems to be due to
  184. the bulk of data in the environment variables.  You may be able to avoid
  185. it by using the following command to compile GNU CC with Sun CC:
  186.      make CC="TERMCAP=x OBJS=x LIBFUNCS=x STAGESTUFF=x cc"
  187.    SunOS 4.1.3 and 4.1.3_U1 have bugs that can cause intermittent core
  188. dumps when compiling GNU CC.  A common symptom is an internal compiler
  189. error which does not recur if you run it again.  To fix the problem,
  190. install Sun recommended patch 100726 (for SunOS 4.1.3) or 101508 (for
  191. SunOS 4.1.3_U1), or upgrade to a later SunOS release.
  192. File: gcc.info,  Node: VMS Install,  Next: Collect2,  Prev: Sun Install,  Up: Installation
  193. Installing GNU CC on VMS
  194. ========================
  195.    The VMS version of GNU CC is distributed in a backup saveset
  196. containing both source code and precompiled binaries.
  197.    To install the `gcc' command so you can use the compiler easily, in
  198. the same manner as you use the VMS C compiler, you must install the VMS
  199. CLD file for GNU CC as follows:
  200.   1. Define the VMS logical names `GNU_CC' and `GNU_CC_INCLUDE' to
  201.      point to the directories where the GNU CC executables
  202.      (`gcc-cpp.exe', `gcc-cc1.exe', etc.) and the C include files are
  203.      kept respectively.  This should be done with the commands:
  204.           $ assign /system /translation=concealed -
  205.             disk:[gcc.] gnu_cc
  206.           $ assign /system /translation=concealed -
  207.             disk:[gcc.include.] gnu_cc_include
  208.      with the appropriate disk and directory names.  These commands can
  209.      be placed in your system startup file so they will be executed
  210.      whenever the machine is rebooted.  You may, if you choose, do this
  211.      via the `GCC_INSTALL.COM' script in the `[GCC]' directory.
  212.   2. Install the `GCC' command with the command line:
  213.           $ set command /table=sys$common:[syslib]dcltables -
  214.             /output=sys$common:[syslib]dcltables gnu_cc:[000000]gcc
  215.           $ install replace sys$common:[syslib]dcltables
  216.   3. To install the help file, do the following:
  217.           $ library/help sys$library:helplib.hlb gcc.hlp
  218.      Now you can invoke the compiler with a command like `gcc /verbose
  219.      file.c', which is equivalent to the command `gcc -v -c file.c' in
  220.      Unix.
  221.    If you wish to use GNU C++ you must first install GNU CC, and then
  222. perform the following steps:
  223.   1. Define the VMS logical name `GNU_GXX_INCLUDE' to point to the
  224.      directory where the preprocessor will search for the C++ header
  225.      files.  This can be done with the command:
  226.           $ assign /system /translation=concealed -
  227.             disk:[gcc.gxx_include.] gnu_gxx_include
  228.      with the appropriate disk and directory name.  If you are going to
  229.      be using a C++ runtime library, this is where its install
  230.      procedure will install its header files.
  231.   2. Obtain the file `gcc-cc1plus.exe', and place this in the same
  232.      directory that `gcc-cc1.exe' is kept.
  233.      The GNU C++ compiler can be invoked with a command like `gcc /plus
  234.      /verbose file.cc', which is equivalent to the command `g++ -v -c
  235.      file.cc' in Unix.
  236.    We try to put corresponding binaries and sources on the VMS
  237. distribution tape.  But sometimes the binaries will be from an older
  238. version than the sources, because we don't always have time to update
  239. them.  (Use the `/version' option to determine the version number of
  240. the binaries and compare it with the source file `version.c' to tell
  241. whether this is so.)  In this case, you should use the binaries you get
  242. to recompile the sources.  If you must recompile, here is how:
  243.   1. Execute the command procedure `vmsconfig.com' to set up the files
  244.      `tm.h', `config.h', `aux-output.c', and `md.', and to create files
  245.      `tconfig.h' and `hconfig.h'.  This procedure also creates several
  246.      linker option files used by `make-cc1.com' and a data file used by
  247.      `make-l2.com'.
  248.           $ @vmsconfig.com
  249.   2. Setup the logical names and command tables as defined above.  In
  250.      addition, define the VMS logical name `GNU_BISON' to point at the
  251.      to the directories where the Bison executable is kept.  This
  252.      should be done with the command:
  253.           $ assign /system /translation=concealed -
  254.             disk:[bison.] gnu_bison
  255.      You may, if you choose, use the `INSTALL_BISON.COM' script in the
  256.      `[BISON]' directory.
  257.   3. Install the `BISON' command with the command line:
  258.           $ set command /table=sys$common:[syslib]dcltables -
  259.             /output=sys$common:[syslib]dcltables -
  260.             gnu_bison:[000000]bison
  261.           $ install replace sys$common:[syslib]dcltables
  262.   4. Type `@make-gcc' to recompile everything (alternatively, submit
  263.      the file `make-gcc.com' to a batch queue).  If you wish to build
  264.      the GNU C++ compiler as well as the GNU CC compiler, you must
  265.      first edit `make-gcc.com' and follow the instructions that appear
  266.      in the comments.
  267.   5. In order to use GCC, you need a library of functions which GCC
  268.      compiled code will call to perform certain tasks, and these
  269.      functions are defined in the file `libgcc2.c'.  To compile this
  270.      you should use the command procedure `make-l2.com', which will
  271.      generate the library `libgcc2.olb'.  `libgcc2.olb' should be built
  272.      using the compiler built from the same distribution that
  273.      `libgcc2.c' came from, and `make-gcc.com' will automatically do
  274.      all of this for you.
  275.      To install the library, use the following commands:
  276.           $ library gnu_cc:[000000]gcclib/delete=(new,eprintf)
  277.           $ library gnu_cc:[000000]gcclib/delete=L_*
  278.           $ library libgcc2/extract=*/output=libgcc2.obj
  279.           $ library gnu_cc:[000000]gcclib libgcc2.obj
  280.      The first command simply removes old modules that will be replaced
  281.      with modules from `libgcc2' under different module names.  The
  282.      modules `new' and `eprintf' may not actually be present in your
  283.      `gcclib.olb'--if the VMS librarian complains about those modules
  284.      not being present, simply ignore the message and continue on with
  285.      the next command.  The second command removes the modules that
  286.      came from the previous version of the library `libgcc2.c'.
  287.      Whenever you update the compiler on your system, you should also
  288.      update the library with the above procedure.
  289.   6. You may wish to build GCC in such a way that no files are written
  290.      to the directory where the source files reside.  An example would
  291.      be the when the source files are on a read-only disk.  In these
  292.      cases, execute the following DCL commands (substituting your
  293.      actual path names):
  294.           $ assign dua0:[gcc.build_dir.]/translation=concealed, -
  295.                    dua1:[gcc.source_dir.]/translation=concealed  gcc_build
  296.           $ set default gcc_build:[000000]
  297.      where the directory `dua1:[gcc.source_dir]' contains the source
  298.      code, and the directory `dua0:[gcc.build_dir]' is meant to contain
  299.      all of the generated object files and executables.  Once you have
  300.      done this, you can proceed building GCC as described above.  (Keep
  301.      in mind that `gcc_build' is a rooted logical name, and thus the
  302.      device names in each element of the search list must be an actual
  303.      physical device name rather than another rooted logical name).
  304.   7. *If you are building GNU CC with a previous version of GNU CC, you
  305.      also should check to see that you have the newest version of the
  306.      assembler*.  In particular, GNU CC version 2 treats global constant
  307.      variables slightly differently from GNU CC version 1, and GAS
  308.      version 1.38.1 does not have the patches required to work with GCC
  309.      version 2.  If you use GAS 1.38.1, then `extern const' variables
  310.      will not have the read-only bit set, and the linker will generate
  311.      warning messages about mismatched psect attributes for these
  312.      variables.  These warning messages are merely a nuisance, and can
  313.      safely be ignored.
  314.      If you are compiling with a version of GNU CC older than 1.33,
  315.      specify `/DEFINE=("inline=")' as an option in all the
  316.      compilations.  This requires editing all the `gcc' commands in
  317.      `make-cc1.com'.  (The older versions had problems supporting
  318.      `inline'.)  Once you have a working 1.33 or newer GNU CC, you can
  319.      change this file back.
  320.   8. If you want to build GNU CC with the VAX C compiler, you will need
  321.      to make minor changes in `make-cccp.com' and `make-cc1.com' to
  322.      choose alternate definitions of `CC', `CFLAGS', and `LIBS'.  See
  323.      comments in those files.  However, you must also have a working
  324.      version of the GNU assembler (GNU as, aka GAS) as it is used as
  325.      the back-end for GNU CC to produce binary object modules and is
  326.      not included in the GNU CC sources.  GAS is also needed to compile
  327.      `libgcc2' in order to build `gcclib' (see above); `make-l2.com'
  328.      expects to be able to find it operational in
  329.      `gnu_cc:[000000]gnu-as.exe'.
  330.      To use GNU CC on VMS, you need the VMS driver programs `gcc.exe',
  331.      `gcc.com', and `gcc.cld'.  They are distributed with the VMS
  332.      binaries (`gcc-vms') rather than the GNU CC sources.  GAS is also
  333.      included in `gcc-vms', as is Bison.
  334.      Once you have successfully built GNU CC with VAX C, you should use
  335.      the resulting compiler to rebuild itself.  Before doing this, be
  336.      sure to restore the `CC', `CFLAGS', and `LIBS' definitions in
  337.      `make-cccp.com' and `make-cc1.com'.  The second generation
  338.      compiler will be able to take advantage of many optimizations that
  339.      must be suppressed when building with other compilers.
  340.    Under previous versions of GNU CC, the generated code would
  341. occasionally give strange results when linked with the sharable
  342. `VAXCRTL' library.  Now this should work.
  343.    Even with this version, however, GNU CC itself should not be linked
  344. with the sharable `VAXCRTL'.  The version of `qsort' in `VAXCRTL' has a
  345. bug (known to be present in VMS versions V4.6 through V5.5) which
  346. causes the compiler to fail.
  347.    The executables are generated by `make-cc1.com' and `make-cccp.com'
  348. use the object library version of `VAXCRTL' in order to make use of the
  349. `qsort' routine in `gcclib.olb'.  If you wish to link the compiler
  350. executables with the shareable image version of `VAXCRTL', you should
  351. edit the file `tm.h' (created by `vmsconfig.com') to define the macro
  352. `QSORT_WORKAROUND'.
  353.    `QSORT_WORKAROUND' is always defined when GNU CC is compiled with
  354. VAX C, to avoid a problem in case `gcclib.olb' is not yet available.
  355. File: gcc.info,  Node: Collect2,  Next: Header Dirs,  Prev: VMS Install,  Up: Installation
  356. `collect2'
  357. ==========
  358.    GNU CC uses a utility called `collect2' on nearly all systems to
  359. arrange to call various initialization functions at start time.
  360.    The program `collect2' works by linking the program once and looking
  361. through the linker output file for symbols with particular names
  362. indicating they are constructor functions.  If it finds any, it creates
  363. a new temporary `.c' file containing a table of them, compiles it, and
  364. links the program a second time including that file.
  365.    The actual calls to the constructors are carried out by a subroutine
  366. called `__main', which is called (automatically) at the beginning of
  367. the body of `main' (provided `main' was compiled with GNU CC).  Calling
  368. `__main' is necessary, even when compiling C code, to allow linking C
  369. and C++ object code together.  (If you use `-nostdlib', you get an
  370. unresolved reference to `__main', since it's defined in the standard
  371. GCC library.  Include `-lgcc' at the end of your compiler command line
  372. to resolve this reference.)
  373.    The program `collect2' is installed as `ld' in the directory where
  374. the passes of the compiler are installed.  When `collect2' needs to
  375. find the *real* `ld', it tries the following file names:
  376.    * `real-ld' in the directories listed in the compiler's search
  377.      directories.
  378.    * `real-ld' in the directories listed in the environment variable
  379.      `PATH'.
  380.    * The file specified in the `REAL_LD_FILE_NAME' configuration macro,
  381.      if specified.
  382.    * `ld' in the compiler's search directories, except that `collect2'
  383.      will not execute itself recursively.
  384.    * `ld' in `PATH'.
  385.    "The compiler's search directories" means all the directories where
  386. `gcc' searches for passes of the compiler.  This includes directories
  387. that you specify with `-B'.
  388.    Cross-compilers search a little differently:
  389.    * `real-ld' in the compiler's search directories.
  390.    * `TARGET-real-ld' in `PATH'.
  391.    * The file specified in the `REAL_LD_FILE_NAME' configuration macro,
  392.      if specified.
  393.    * `ld' in the compiler's search directories.
  394.    * `TARGET-ld' in `PATH'.
  395.    `collect2' explicitly avoids running `ld' using the file name under
  396. which `collect2' itself was invoked.  In fact, it remembers up a list
  397. of such names--in case one copy of `collect2' finds another copy (or
  398. version) of `collect2' installed as `ld' in a second place in the
  399. search path.
  400.    `collect2' searches for the utilities `nm' and `strip' using the
  401. same algorithm as above for `ld'.
  402. File: gcc.info,  Node: Header Dirs,  Prev: Collect2,  Up: Installation
  403. Standard Header File Directories
  404. ================================
  405.    `GCC_INCLUDE_DIR' means the same thing for native and cross.  It is
  406. where GNU CC stores its private include files, and also where GNU CC
  407. stores the fixed include files.  A cross compiled GNU CC runs
  408. `fixincludes' on the header files in `$(tooldir)/include'.  (If the
  409. cross compilation header files need to be fixed, they must be installed
  410. before GNU CC is built.  If the cross compilation header files are
  411. already suitable for ANSI C and GNU CC, nothing special need be done).
  412.    `GPLUSPLUS_INCLUDE_DIR' means the same thing for native and cross.
  413. It is where `g++' looks first for header files.  The C++ library
  414. installs only target independent header files in that directory.
  415.    `LOCAL_INCLUDE_DIR' is used only for a native compiler.  It is
  416. normally `/usr/local/include'.  GNU CC searches this directory so that
  417. users can install header files in `/usr/local/include'.
  418.    `CROSS_INCLUDE_DIR' is used only for a cross compiler.  GNU CC
  419. doesn't install anything there.
  420.    `TOOL_INCLUDE_DIR' is used for both native and cross compilers.  It
  421. is the place for other packages to install header files that GNU CC will
  422. use.  For a cross-compiler, this is the equivalent of `/usr/include'.
  423. When you build a cross-compiler, `fixincludes' processes any header
  424. files in this directory.
  425. File: gcc.info,  Node: C Extensions,  Next: C++ Extensions,  Prev: Installation,  Up: Top
  426. Extensions to the C Language Family
  427. ***********************************
  428.    GNU C provides several language features not found in ANSI standard
  429. C.  (The `-pedantic' option directs GNU CC to print a warning message if
  430. any of these features is used.)  To test for the availability of these
  431. features in conditional compilation, check for a predefined macro
  432. `__GNUC__', which is always defined under GNU CC.
  433.    These extensions are available in C and Objective C.  Most of them
  434. are also available in C++.  *Note Extensions to the C++ Language: C++
  435. Extensions, for extensions that apply *only* to C++.
  436. * Menu:
  437. * Statement Exprs::     Putting statements and declarations inside expressions.
  438. * Local Labels::        Labels local to a statement-expression.
  439. * Labels as Values::    Getting pointers to labels, and computed gotos.
  440. * Nested Functions::    As in Algol and Pascal, lexical scoping of functions.
  441. * Constructing Calls::    Dispatching a call to another function.
  442. * Naming Types::        Giving a name to the type of some expression.
  443. * Typeof::              `typeof': referring to the type of an expression.
  444. * Lvalues::             Using `?:', `,' and casts in lvalues.
  445. * Conditionals::        Omitting the middle operand of a `?:' expression.
  446. * Long Long::        Double-word integers--`long long int'.
  447. * Complex::             Data types for complex numbers.
  448. * Hex Floats::          Hexadecimal floating-point constants.
  449. * Zero Length::         Zero-length arrays.
  450. * Variable Length::     Arrays whose length is computed at run time.
  451. * Macro Varargs::    Macros with variable number of arguments.
  452. * Subscripting::        Any array can be subscripted, even if not an lvalue.
  453. * Pointer Arith::       Arithmetic on `void'-pointers and function pointers.
  454. * Initializers::        Non-constant initializers.
  455. * Constructors::        Constructor expressions give structures, unions
  456.                          or arrays as values.
  457. * Labeled Elements::    Labeling elements of initializers.
  458. * Cast to Union::       Casting to union type from any member of the union.
  459. * Case Ranges::        `case 1 ... 9' and such.
  460. * Function Attributes:: Declaring that functions have no side effects,
  461.                          or that they can never return.
  462. * Function Prototypes:: Prototype declarations and old-style definitions.
  463. * C++ Comments::        C++ comments are recognized.
  464. * Dollar Signs::        Dollar sign is allowed in identifiers.
  465. * Character Escapes::   `\e' stands for the character <ESC>.
  466. * Variable Attributes::    Specifying attributes of variables.
  467. * Type Attributes::    Specifying attributes of types.
  468. * Alignment::           Inquiring about the alignment of a type or variable.
  469. * Inline::              Defining inline functions (as fast as macros).
  470. * Extended Asm::        Assembler instructions with C expressions as operands.
  471.                          (With them you can define "built-in" functions.)
  472. * Asm Labels::          Specifying the assembler name to use for a C symbol.
  473. * Explicit Reg Vars::   Defining variables residing in specified registers.
  474. * Alternate Keywords::  `__const__', `__asm__', etc., for header files.
  475. * Incomplete Enums::    `enum foo;', with details to follow.
  476. * Function Names::    Printable strings which are the name of the current
  477.              function.
  478. * Return Address::      Getting the return or frame address of a function.
  479. * Other Builtins::      Other built-in functions.
  480. * Deprecated Features:: Things might disappear from g++.
  481. File: gcc.info,  Node: Statement Exprs,  Next: Local Labels,  Up: C Extensions
  482. Statements and Declarations in Expressions
  483. ==========================================
  484.    A compound statement enclosed in parentheses may appear as an
  485. expression in GNU C.  This allows you to use loops, switches, and local
  486. variables within an expression.
  487.    Recall that a compound statement is a sequence of statements
  488. surrounded by braces; in this construct, parentheses go around the
  489. braces.  For example:
  490.      ({ int y = foo (); int z;
  491.         if (y > 0) z = y;
  492.         else z = - y;
  493.         z; })
  494. is a valid (though slightly more complex than necessary) expression for
  495. the absolute value of `foo ()'.
  496.    The last thing in the compound statement should be an expression
  497. followed by a semicolon; the value of this subexpression serves as the
  498. value of the entire construct.  (If you use some other kind of statement
  499. last within the braces, the construct has type `void', and thus
  500. effectively no value.)
  501.    This feature is especially useful in making macro definitions "safe"
  502. (so that they evaluate each operand exactly once).  For example, the
  503. "maximum" function is commonly defined as a macro in standard C as
  504. follows:
  505.      #define max(a,b) ((a) > (b) ? (a) : (b))
  506. But this definition computes either A or B twice, with bad results if
  507. the operand has side effects.  In GNU C, if you know the type of the
  508. operands (here let's assume `int'), you can define the macro safely as
  509. follows:
  510.      #define maxint(a,b) \
  511.        ({int _a = (a), _b = (b); _a > _b ? _a : _b; })
  512.    Embedded statements are not allowed in constant expressions, such as
  513. the value of an enumeration constant, the width of a bit field, or the
  514. initial value of a static variable.
  515.    If you don't know the type of the operand, you can still do this,
  516. but you must use `typeof' (*note Typeof::.) or type naming (*note
  517. Naming Types::.).
  518. File: gcc.info,  Node: Local Labels,  Next: Labels as Values,  Prev: Statement Exprs,  Up: C Extensions
  519. Locally Declared Labels
  520. =======================
  521.    Each statement expression is a scope in which "local labels" can be
  522. declared.  A local label is simply an identifier; you can jump to it
  523. with an ordinary `goto' statement, but only from within the statement
  524. expression it belongs to.
  525.    A local label declaration looks like this:
  526.      __label__ LABEL;
  527.      __label__ LABEL1, LABEL2, ...;
  528.    Local label declarations must come at the beginning of the statement
  529. expression, right after the `({', before any ordinary declarations.
  530.    The label declaration defines the label *name*, but does not define
  531. the label itself.  You must do this in the usual way, with `LABEL:',
  532. within the statements of the statement expression.
  533.    The local label feature is useful because statement expressions are
  534. often used in macros.  If the macro contains nested loops, a `goto' can
  535. be useful for breaking out of them.  However, an ordinary label whose
  536. scope is the whole function cannot be used: if the macro can be
  537. expanded several times in one function, the label will be multiply
  538. defined in that function.  A local label avoids this problem.  For
  539. example:
  540.      #define SEARCH(array, target)                     \
  541.      ({                                               \
  542.        __label__ found;                                \
  543.        typeof (target) _SEARCH_target = (target);      \
  544.        typeof (*(array)) *_SEARCH_array = (array);     \
  545.        int i, j;                                       \
  546.        int value;                                      \
  547.        for (i = 0; i < max; i++)                       \
  548.          for (j = 0; j < max; j++)                     \
  549.            if (_SEARCH_array[i][j] == _SEARCH_target)  \
  550.              { value = i; goto found; }              \
  551.        value = -1;                                     \
  552.       found:                                           \
  553.        value;                                          \
  554.      })
  555. File: gcc.info,  Node: Labels as Values,  Next: Nested Functions,  Prev: Local Labels,  Up: C Extensions
  556. Labels as Values
  557. ================
  558.    You can get the address of a label defined in the current function
  559. (or a containing function) with the unary operator `&&'.  The value has
  560. type `void *'.  This value is a constant and can be used wherever a
  561. constant of that type is valid.  For example:
  562.      void *ptr;
  563.      ...
  564.      ptr = &&foo;
  565.    To use these values, you need to be able to jump to one.  This is
  566. done with the computed goto statement(1), `goto *EXP;'.  For example,
  567.      goto *ptr;
  568. Any expression of type `void *' is allowed.
  569.    One way of using these constants is in initializing a static array
  570. that will serve as a jump table:
  571.      static void *array[] = { &&foo, &&bar, &&hack };
  572.    Then you can select a label with indexing, like this:
  573.      goto *array[i];
  574. Note that this does not check whether the subscript is in bounds--array
  575. indexing in C never does that.
  576.    Such an array of label values serves a purpose much like that of the
  577. `switch' statement.  The `switch' statement is cleaner, so use that
  578. rather than an array unless the problem does not fit a `switch'
  579. statement very well.
  580.    Another use of label values is in an interpreter for threaded code.
  581. The labels within the interpreter function can be stored in the
  582. threaded code for super-fast dispatching.
  583.    You can use this mechanism to jump to code in a different function.
  584. If you do that, totally unpredictable things will happen.  The best way
  585. to avoid this is to store the label address only in automatic variables
  586. and never pass it as an argument.
  587.    ---------- Footnotes ----------
  588.    (1) The analogous feature in Fortran is called an assigned goto, but
  589. that name seems inappropriate in C, where one can do more than simply
  590. store label addresses in label variables.
  591. File: gcc.info,  Node: Nested Functions,  Next: Constructing Calls,  Prev: Labels as Values,  Up: C Extensions
  592. Nested Functions
  593. ================
  594.    A "nested function" is a function defined inside another function.
  595. (Nested functions are not supported for GNU C++.)  The nested function's
  596. name is local to the block where it is defined.  For example, here we
  597. define a nested function named `square', and call it twice:
  598.      foo (double a, double b)
  599.      {
  600.        double square (double z) { return z * z; }
  601.      
  602.        return square (a) + square (b);
  603.      }
  604.    The nested function can access all the variables of the containing
  605. function that are visible at the point of its definition.  This is
  606. called "lexical scoping".  For example, here we show a nested function
  607. which uses an inherited variable named `offset':
  608.      bar (int *array, int offset, int size)
  609.      {
  610.        int access (int *array, int index)
  611.          { return array[index + offset]; }
  612.        int i;
  613.        ...
  614.        for (i = 0; i < size; i++)
  615.          ... access (array, i) ...
  616.      }
  617.    Nested function definitions are permitted within functions in the
  618. places where variable definitions are allowed; that is, in any block,
  619. before the first statement in the block.
  620.    It is possible to call the nested function from outside the scope of
  621. its name by storing its address or passing the address to another
  622. function:
  623.      hack (int *array, int size)
  624.      {
  625.        void store (int index, int value)
  626.          { array[index] = value; }
  627.      
  628.        intermediate (store, size);
  629.      }
  630.    Here, the function `intermediate' receives the address of `store' as
  631. an argument.  If `intermediate' calls `store', the arguments given to
  632. `store' are used to store into `array'.  But this technique works only
  633. so long as the containing function (`hack', in this example) does not
  634. exit.
  635.    If you try to call the nested function through its address after the
  636. containing function has exited, all hell will break loose.  If you try
  637. to call it after a containing scope level has exited, and if it refers
  638. to some of the variables that are no longer in scope, you may be lucky,
  639. but it's not wise to take the risk.  If, however, the nested function
  640. does not refer to anything that has gone out of scope, you should be
  641. safe.
  642.    GNU CC implements taking the address of a nested function using a
  643. technique called "trampolines".   A paper describing them is available
  644. as `http://master.debian.org/~karlheg/Usenix88-lexic.pdf'.
  645.    A nested function can jump to a label inherited from a containing
  646. function, provided the label was explicitly declared in the containing
  647. function (*note Local Labels::.).  Such a jump returns instantly to the
  648. containing function, exiting the nested function which did the `goto'
  649. and any intermediate functions as well.  Here is an example:
  650.      bar (int *array, int offset, int size)
  651.      {
  652.        __label__ failure;
  653.        int access (int *array, int index)
  654.          {
  655.            if (index > size)
  656.              goto failure;
  657.            return array[index + offset];
  658.          }
  659.        int i;
  660.        ...
  661.        for (i = 0; i < size; i++)
  662.          ... access (array, i) ...
  663.        ...
  664.        return 0;
  665.      
  666.       /* Control comes here from `access'
  667.          if it detects an error.  */
  668.       failure:
  669.        return -1;
  670.      }
  671.    A nested function always has internal linkage.  Declaring one with
  672. `extern' is erroneous.  If you need to declare the nested function
  673. before its definition, use `auto' (which is otherwise meaningless for
  674. function declarations).
  675.      bar (int *array, int offset, int size)
  676.      {
  677.        __label__ failure;
  678.        auto int access (int *, int);
  679.        ...
  680.        int access (int *array, int index)
  681.          {
  682.            if (index > size)
  683.              goto failure;
  684.            return array[index + offset];
  685.          }
  686.        ...
  687.      }
  688. File: gcc.info,  Node: Constructing Calls,  Next: Naming Types,  Prev: Nested Functions,  Up: C Extensions
  689. Constructing Function Calls
  690. ===========================
  691.    Using the built-in functions described below, you can record the
  692. arguments a function received, and call another function with the same
  693. arguments, without knowing the number or types of the arguments.
  694.    You can also record the return value of that function call, and
  695. later return that value, without knowing what data type the function
  696. tried to return (as long as your caller expects that data type).
  697. `__builtin_apply_args ()'
  698.      This built-in function returns a pointer of type `void *' to data
  699.      describing how to perform a call with the same arguments as were
  700.      passed to the current function.
  701.      The function saves the arg pointer register, structure value
  702.      address, and all registers that might be used to pass arguments to
  703.      a function into a block of memory allocated on the stack.  Then it
  704.      returns the address of that block.
  705. `__builtin_apply (FUNCTION, ARGUMENTS, SIZE)'
  706.      This built-in function invokes FUNCTION (type `void (*)()') with a
  707.      copy of the parameters described by ARGUMENTS (type `void *') and
  708.      SIZE (type `int').
  709.      The value of ARGUMENTS should be the value returned by
  710.      `__builtin_apply_args'.  The argument SIZE specifies the size of
  711.      the stack argument data, in bytes.
  712.      This function returns a pointer of type `void *' to data describing
  713.      how to return whatever value was returned by FUNCTION.  The data
  714.      is saved in a block of memory allocated on the stack.
  715.      It is not always simple to compute the proper value for SIZE.  The
  716.      value is used by `__builtin_apply' to compute the amount of data
  717.      that should be pushed on the stack and copied from the incoming
  718.      argument area.
  719. `__builtin_return (RESULT)'
  720.      This built-in function returns the value described by RESULT from
  721.      the containing function.  You should specify, for RESULT, a value
  722.      returned by `__builtin_apply'.
  723. File: gcc.info,  Node: Naming Types,  Next: Typeof,  Prev: Constructing Calls,  Up: C Extensions
  724. Naming an Expression's Type
  725. ===========================
  726.    You can give a name to the type of an expression using a `typedef'
  727. declaration with an initializer.  Here is how to define NAME as a type
  728. name for the type of EXP:
  729.      typedef NAME = EXP;
  730.    This is useful in conjunction with the statements-within-expressions
  731. feature.  Here is how the two together can be used to define a safe
  732. "maximum" macro that operates on any arithmetic type:
  733.      #define max(a,b) \
  734.        ({typedef _ta = (a), _tb = (b);  \
  735.          _ta _a = (a); _tb _b = (b);     \
  736.          _a > _b ? _a : _b; })
  737.    The reason for using names that start with underscores for the local
  738. variables is to avoid conflicts with variable names that occur within
  739. the expressions that are substituted for `a' and `b'.  Eventually we
  740. hope to design a new form of declaration syntax that allows you to
  741. declare variables whose scopes start only after their initializers;
  742. this will be a more reliable way to prevent such conflicts.
  743. File: gcc.info,  Node: Typeof,  Next: Lvalues,  Prev: Naming Types,  Up: C Extensions
  744. Referring to a Type with `typeof'
  745. =================================
  746.    Another way to refer to the type of an expression is with `typeof'.
  747. The syntax of using of this keyword looks like `sizeof', but the
  748. construct acts semantically like a type name defined with `typedef'.
  749.    There are two ways of writing the argument to `typeof': with an
  750. expression or with a type.  Here is an example with an expression:
  751.      typeof (x[0](1))
  752. This assumes that `x' is an array of functions; the type described is
  753. that of the values of the functions.
  754.    Here is an example with a typename as the argument:
  755.      typeof (int *)
  756. Here the type described is that of pointers to `int'.
  757.    If you are writing a header file that must work when included in
  758. ANSI C programs, write `__typeof__' instead of `typeof'.  *Note
  759. Alternate Keywords::.
  760.    A `typeof'-construct can be used anywhere a typedef name could be
  761. used.  For example, you can use it in a declaration, in a cast, or
  762. inside of `sizeof' or `typeof'.
  763.    * This declares `y' with the type of what `x' points to.
  764.           typeof (*x) y;
  765.    * This declares `y' as an array of such values.
  766.           typeof (*x) y[4];
  767.    * This declares `y' as an array of pointers to characters:
  768.           typeof (typeof (char *)[4]) y;
  769.      It is equivalent to the following traditional C declaration:
  770.           char *y[4];
  771.      To see the meaning of the declaration using `typeof', and why it
  772.      might be a useful way to write, let's rewrite it with these macros:
  773.           #define pointer(T)  typeof(T *)
  774.           #define array(T, N) typeof(T [N])
  775.      Now the declaration can be rewritten this way:
  776.           array (pointer (char), 4) y;
  777.      Thus, `array (pointer (char), 4)' is the type of arrays of 4
  778.      pointers to `char'.
  779. File: gcc.info,  Node: Lvalues,  Next: Conditionals,  Prev: Typeof,  Up: C Extensions
  780. Generalized Lvalues
  781. ===================
  782.    Compound expressions, conditional expressions and casts are allowed
  783. as lvalues provided their operands are lvalues.  This means that you
  784. can take their addresses or store values into them.
  785.    Standard C++ allows compound expressions and conditional expressions
  786. as lvalues, and permits casts to reference type, so use of this
  787. extension is deprecated for C++ code.
  788.    For example, a compound expression can be assigned, provided the last
  789. expression in the sequence is an lvalue.  These two expressions are
  790. equivalent:
  791.      (a, b) += 5
  792.      a, (b += 5)
  793.    Similarly, the address of the compound expression can be taken.
  794. These two expressions are equivalent:
  795.      &(a, b)
  796.      a, &b
  797.    A conditional expression is a valid lvalue if its type is not void
  798. and the true and false branches are both valid lvalues.  For example,
  799. these two expressions are equivalent:
  800.      (a ? b : c) = 5
  801.      (a ? b = 5 : (c = 5))
  802.    A cast is a valid lvalue if its operand is an lvalue.  A simple
  803. assignment whose left-hand side is a cast works by converting the
  804. right-hand side first to the specified type, then to the type of the
  805. inner left-hand side expression.  After this is stored, the value is
  806. converted back to the specified type to become the value of the
  807. assignment.  Thus, if `a' has type `char *', the following two
  808. expressions are equivalent:
  809.      (int)a = 5
  810.      (int)(a = (char *)(int)5)
  811.    An assignment-with-arithmetic operation such as `+=' applied to a
  812. cast performs the arithmetic using the type resulting from the cast,
  813. and then continues as in the previous case.  Therefore, these two
  814. expressions are equivalent:
  815.      (int)a += 5
  816.      (int)(a = (char *)(int) ((int)a + 5))
  817.    You cannot take the address of an lvalue cast, because the use of its
  818. address would not work out coherently.  Suppose that `&(int)f' were
  819. permitted, where `f' has type `float'.  Then the following statement
  820. would try to store an integer bit-pattern where a floating point number
  821. belongs:
  822.      *&(int)f = 1;
  823.    This is quite different from what `(int)f = 1' would do--that would
  824. convert 1 to floating point and store it.  Rather than cause this
  825. inconsistency, we think it is better to prohibit use of `&' on a cast.
  826.    If you really do want an `int *' pointer with the address of `f',
  827. you can simply write `(int *)&f'.
  828. File: gcc.info,  Node: Conditionals,  Next: Long Long,  Prev: Lvalues,  Up: C Extensions
  829. Conditionals with Omitted Operands
  830. ==================================
  831.    The middle operand in a conditional expression may be omitted.  Then
  832. if the first operand is nonzero, its value is the value of the
  833. conditional expression.
  834.    Therefore, the expression
  835.      x ? : y
  836. has the value of `x' if that is nonzero; otherwise, the value of `y'.
  837.    This example is perfectly equivalent to
  838.      x ? x : y
  839. In this simple case, the ability to omit the middle operand is not
  840. especially useful.  When it becomes useful is when the first operand
  841. does, or may (if it is a macro argument), contain a side effect.  Then
  842. repeating the operand in the middle would perform the side effect
  843. twice.  Omitting the middle operand uses the value already computed
  844. without the undesirable effects of recomputing it.
  845. File: gcc.info,  Node: Long Long,  Next: Complex,  Prev: Conditionals,  Up: C Extensions
  846. Double-Word Integers
  847. ====================
  848.    GNU C supports data types for integers that are twice as long as
  849. `int'.  Simply write `long long int' for a signed integer, or `unsigned
  850. long long int' for an unsigned integer.  To make an integer constant of
  851. type `long long int', add the suffix `LL' to the integer.  To make an
  852. integer constant of type `unsigned long long int', add the suffix `ULL'
  853. to the integer.
  854.    You can use these types in arithmetic like any other integer types.
  855. Addition, subtraction, and bitwise boolean operations on these types
  856. are open-coded on all types of machines.  Multiplication is open-coded
  857. if the machine supports fullword-to-doubleword a widening multiply
  858. instruction.  Division and shifts are open-coded only on machines that
  859. provide special support.  The operations that are not open-coded use
  860. special library routines that come with GNU CC.
  861.    There may be pitfalls when you use `long long' types for function
  862. arguments, unless you declare function prototypes.  If a function
  863. expects type `int' for its argument, and you pass a value of type `long
  864. long int', confusion will result because the caller and the subroutine
  865. will disagree about the number of bytes for the argument.  Likewise, if
  866. the function expects `long long int' and you pass `int'.  The best way
  867. to avoid such problems is to use prototypes.
  868. File: gcc.info,  Node: Complex,  Next: Hex Floats,  Prev: Long Long,  Up: C Extensions
  869. Complex Numbers
  870. ===============
  871.    GNU C supports complex data types.  You can declare both complex
  872. integer types and complex floating types, using the keyword
  873. `__complex__'.
  874.    For example, `__complex__ double x;' declares `x' as a variable
  875. whose real part and imaginary part are both of type `double'.
  876. `__complex__ short int y;' declares `y' to have real and imaginary
  877. parts of type `short int'; this is not likely to be useful, but it
  878. shows that the set of complex types is complete.
  879.    To write a constant with a complex data type, use the suffix `i' or
  880. `j' (either one; they are equivalent).  For example, `2.5fi' has type
  881. `__complex__ float' and `3i' has type `__complex__ int'.  Such a
  882. constant always has a pure imaginary value, but you can form any
  883. complex value you like by adding one to a real constant.
  884.    To extract the real part of a complex-valued expression EXP, write
  885. `__real__ EXP'.  Likewise, use `__imag__' to extract the imaginary part.
  886.    The operator `~' performs complex conjugation when used on a value
  887. with a complex type.
  888.    GNU CC can allocate complex automatic variables in a noncontiguous
  889. fashion; it's even possible for the real part to be in a register while
  890. the imaginary part is on the stack (or vice-versa).  None of the
  891. supported debugging info formats has a way to represent noncontiguous
  892. allocation like this, so GNU CC describes a noncontiguous complex
  893. variable as if it were two separate variables of noncomplex type.  If
  894. the variable's actual name is `foo', the two fictitious variables are
  895. named `foo$real' and `foo$imag'.  You can examine and set these two
  896. fictitious variables with your debugger.
  897.    A future version of GDB will know how to recognize such pairs and
  898. treat them as a single variable with a complex type.
  899. File: gcc.info,  Node: Hex Floats,  Next: Zero Length,  Prev: Complex,  Up: C Extensions
  900. Hex Floats
  901. ==========
  902.    GNU CC recognizes floating-point numbers written not only in the
  903. usual decimal notation, such as `1.55e1', but also numbers such as
  904. `0x1.fp3' written in hexadecimal format.  In that format the `0x' hex
  905. introducer and the `p' or `P' exponent field are mandatory.  The
  906. exponent is a decimal number that indicates the power of 2 by which the
  907. significand part will be multiplied.  Thus `0x1.f' is 1 15/16, `p3'
  908. multiplies it by 8, and the value of `0x1.fp3' is the same as `1.55e1'.
  909.    Unlike for floating-point numbers in the decimal notation the
  910. exponent is always required in the hexadecimal notation.  Otherwise the
  911. compiler would not be able to resolve the ambiguity of, e.g., `0x1.f'.
  912. This could mean `1.0f' or `1.9375' since `f' is also the extension for
  913. floating-point constants of type `float'.
  914. File: gcc.info,  Node: Zero Length,  Next: Variable Length,  Prev: Hex Floats,  Up: C Extensions
  915. Arrays of Length Zero
  916. =====================
  917.    Zero-length arrays are allowed in GNU C.  They are very useful as
  918. the last element of a structure which is really a header for a
  919. variable-length object:
  920.      struct line {
  921.        int length;
  922.        char contents[0];
  923.      };
  924.      
  925.      {
  926.        struct line *thisline = (struct line *)
  927.          malloc (sizeof (struct line) + this_length);
  928.        thisline->length = this_length;
  929.      }
  930.    In standard C, you would have to give `contents' a length of 1, which
  931. means either you waste space or complicate the argument to `malloc'.
  932.